home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 42
/
Amiga Format AFCD42 (Issue 126, Aug 1999).iso
/
-serious-
/
comms
/
other
/
amicomsys
/
amicomsysmui.lha
/
AmiComSys
/
rexx
/
SendWEB.amicomsys
< prev
next >
Wrap
Text File
|
1998-01-25
|
831b
|
48 lines
/* Send WEB-address to your browser
Currently supported is Aweb, Amosaic, Ibrowse and Voyager.
$VER: SendWEB.amicomsys 1.3 (01.11.1997) Håkan Parting
*/
parse arg args
options results
if show('P','AWEB.1') then
do
address 'AWEB.1'
OPEN args
Exit
end
if show('P','AMOSAIC.1') then
do
address 'AMOSAIC.1'
JUMP URL args
Exit
end
if show('P','IBROWSE.1') then
do
address 'IBROWSE.1'
NewWindow args
Exit
end
if show('P','IBROWSE') then
do
address 'IBROWSE'
GotoUrl args
/* Change GotoUrl to NewWindow if you want another window to open */
Exit
end
if show('P','VOYAGER') then
do
address 'VOYAGER'
OPENURL args NEW
Exit
end
/* Set the path to your web-browser under the Misc-tab in AmiComSys settings.
*/
ADDRESS AMICOMSYS
OPTIONS RESULTS;
GET stem info.;
ADDRESS COMMAND "c:run >NIL: "info.browserpath" "args;
Exit